waffle/tsconfig.json

13 lines
213 B
JSON
Raw Normal View History

2022-04-04 16:50:52 +03:00
{
"include": [
"./src/**/*"
],
"compilerOptions": {
"target": "esnext",
2022-04-05 22:34:06 +03:00
"module": "commonjs",
2022-04-04 16:50:52 +03:00
"esModuleInterop": true,
"strict": true,
2022-04-28 03:22:20 +03:00
"outDir": "./dist",
"rootDir": "./src"
2022-04-04 16:50:52 +03:00
}
}