badgen.net/tsconfig.json

35 wiersze
633 B
JSON
Czysty Zwykły widok Historia

2019-05-13 08:56:06 +00:00
{
"compilerOptions": {
"strict": true,
2019-05-13 12:00:56 +00:00
"noImplicitAny": false,
"allowJs": true,
"skipLibCheck": true,
"jsx": "preserve",
2019-10-04 13:44:20 +00:00
"target": "es2017",
2019-07-12 04:26:10 +00:00
"module": "esnext",
2019-05-13 08:56:06 +00:00
"moduleResolution": "node",
"esModuleInterop": true,
"sourceMap": true,
2019-06-05 06:47:05 +00:00
"outDir": "dist",
2019-05-13 08:56:06 +00:00
"baseUrl": ".",
2019-07-12 04:26:10 +00:00
"lib": [
"dom",
"esnext"
],
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false
2019-05-13 08:56:06 +00:00
},
"include": [
2019-05-14 01:15:16 +00:00
"index.ts",
"endpoints",
2019-10-04 13:44:20 +00:00
"components",
"pages",
"static"
2019-07-12 04:26:10 +00:00
],
"exclude": [
"node_modules"
2019-05-13 08:56:06 +00:00
]
}