21 lines
421 B
JSON
21 lines
421 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"baseUrl": "./src",
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strict": true,
|
|
"target": "ES2020",
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|