mirror of
https://github.com/updownupdown/tao
synced 2024-11-22 00:06:33 +00:00
25 lines
608 B
JSON
25 lines
608 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noImplicitAny": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
// "paths": {
|
|
// "testUtils": ["./src/test/testUtils.tsx"]
|
|
// }
|
|
},
|
|
"include": ["src"]
|
|
}
|