aqua-playground/tsconfig.json

23 lines
438 B
JSON
Raw Normal View History

2021-04-12 02:07:18 +03:00
{
"compilerOptions": {
2021-09-21 11:43:55 +03:00
"allowJs": true,
2023-02-21 11:25:00 +04:00
"target": "ESNext",
"module": "ESNext",
"lib": ["es2015", "dom"],
2021-04-12 02:07:18 +03:00
"declaration": true,
"outDir": "dist",
2023-02-21 11:25:00 +04:00
"moduleResolution": "nodenext",
2021-04-12 02:07:18 +03:00
"strict": true,
"esModuleInterop": true,
"noImplicitAny": false,
2023-02-22 15:15:11 +04:00
"strictNullChecks": false,
"skipLibCheck": true
2021-04-12 02:07:18 +03:00
},
"exclude": [
"node_modules",
"dist",
2023-02-21 11:25:00 +04:00
"bundle"
],
"include": ["src/**/*"]
}