yacd/tsconfig.json

25 lines
604 B
JSON
Raw Normal View History

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
2020-06-28 11:21:35 +08:00
"baseUrl": ".",
2022-05-08 18:37:08 +08:00
"paths": {
"$src": ["src"],
"$src/*": ["src/*"]
},
2021-05-30 16:33:27 +08:00
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext", "WebWorker"],
"skipLibCheck": true,
"esModuleInterop": false,
2020-07-01 22:06:26 +08:00
"allowSyntheticDefaultImports": true,
2021-05-30 16:33:27 +08:00
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2022-05-08 18:37:08 +08:00
"jsx": "react"
2021-05-30 16:33:27 +08:00
},
"include": ["./src"]
}