badgen.net/tsconfig.json

44 wiersze
784 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",
"target": "es2018",
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",
2019-10-28 16:19:11 +00:00
"dom.iterable",
2019-07-12 04:26:10 +00:00
"esnext"
],
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
2022-12-31 06:29:41 +00:00
"noEmit": false,
"incremental": true,
"plugins": [
{
"name": "next"
}
]
2019-05-13 08:56:06 +00:00
},
"include": [
"api-",
"libs",
2019-05-14 01:15:16 +00:00
"index.ts",
2019-10-04 13:44:20 +00:00
"components",
2022-12-31 06:29:41 +00:00
"pages",
2022-12-31 08:23:34 +00:00
"next-env.d.ts",
".next/types/**/*.ts"
2019-07-12 04:26:10 +00:00
],
"exclude": [
"node_modules"
2019-05-13 08:56:06 +00:00
]
}