FreeDatas2HTML/tsconfig.json

16 lines
342 B
JSON
Raw Normal View History

2021-08-05 11:05:05 +02:00
{
"compilerOptions":
{
"outDir": "./src/build",
"module": "ES6",
"target": "es5",
"strict":true,
"removeComments": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
},
"include": ["src/*", "src/demo/*"],
2021-08-05 11:05:05 +02:00
"exclude": ["src/build"]
}