This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
irreligious/tsconfig.json

17 lines
428 B
JSON
Raw Permalink Normal View History

2021-08-18 06:32:12 -05:00
{
"compilerOptions": {
"rootDir": "./src/",
"outFile": "./public/js/irreligious.js",
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2021-09-05 11:12:18 -05:00
"strictNullChecks": true,
2021-09-05 14:45:37 -05:00
"noImplicitAny": true,
"strictPropertyInitialization": true,
2021-08-23 09:16:45 -05:00
"target": "ES5",
2021-09-04 22:21:14 -05:00
"module": "none",
"plugins": [{"name": "typescript-eslint-language-service"}]
},
"include": ["src"]
2021-08-18 06:32:12 -05:00
}