| 123456789101112131415161718192021222324 |
- {
- "compilerOptions": {
- "outDir": "./build/",
- "noImplicitAny": true,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "alwaysStrict": true,
- "skipLibCheck": true,
- "module": "None",
- "target": "es2017",
- "jsx": "react",
- "allowJs": true,
- "sourceMap": true,
- "moduleResolution": "node",
- "allowSyntheticDefaultImports": true,
- "lib": ["dom", "esnext"],
- "experimentalDecorators": true,
- "baseUrl": "./",
- "paths": {
- "~/*": ["./src/*"]
- }
- },
- "include": ["./src/**/*.ts", "./src/**/*.tsx"]
- }
|