1
Fork 0
tildes-reextended/tsconfig.json

22 lines
341 B
JSON
Raw Permalink Normal View History

2019-11-10 17:38:47 +00:00
{
"compilerOptions": {
"esModuleInterop": true,
"lib": [
"ES2020"
],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
2019-11-10 17:38:47 +00:00
"outDir": "build/",
"strict": true,
"target": "esnext"
2019-11-10 17:38:47 +00:00
},
"include": [
"source/**/*.ts",
"vite.config.ts"
2019-11-10 17:38:47 +00:00
],
"exclude": [
"node_modules/"
]
}