37 lines
776 B
JSON
37 lines
776 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM", "WebWorker"],
|
|
"baseUrl": "source",
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"@/*": ["*"]
|
|
},
|
|
"types": ["vite/client", "vite-plugin-pwa/client"],
|
|
"typeRoots": ["./node_modules/@types", "./types/"],
|
|
"noEmit": true,
|
|
"strict": true
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
},
|
|
"include": [
|
|
"source",
|
|
"scripts",
|
|
"test/**/*.ts",
|
|
"vite.config.ts",
|
|
"cypress.config.ts",
|
|
"vite-iframe-script.config.ts",
|
|
"vite-build-simulation-data.config.ts",
|
|
"prerender.ts",
|
|
"vite-pwa-options.ts"
|
|
]
|
|
}
|