33 lines
641 B
JSON
33 lines
641 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "source",
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"@/*": ["*"]
|
|
},
|
|
"types": ["vite/client"],
|
|
"typeRoots": ["./types/", "./node_modules/@types"],
|
|
"noEmit": true,
|
|
"strict": true
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
},
|
|
"include": [
|
|
"source",
|
|
"scripts",
|
|
"test/**/*.ts",
|
|
"vite.config.ts",
|
|
"vite-iframe-script.config.ts"
|
|
]
|
|
}
|