nodebb-plugin-emoji/tsconfig.json

22 lines
425 B
JSON
Raw Normal View History

2017-06-25 15:15:30 -06:00
{
"include": [
2017-09-06 15:28:37 -06:00
"lib/**/*.ts"
2017-06-25 15:15:30 -06:00
],
"compilerOptions": {
2021-03-15 21:36:58 -06:00
"types": [],
2017-06-25 15:15:30 -06:00
"outDir": "build/lib",
2021-02-22 19:13:03 -07:00
"lib": ["es2019"],
"target": "es2019",
"module": "node16",
"moduleResolution": "node16",
2021-02-03 21:35:21 -07:00
"esModuleInterop": true,
2017-06-25 15:15:30 -06:00
"noImplicitAny": true,
"alwaysStrict": true,
2024-11-09 14:39:06 -07:00
"strictNullChecks": true,
"sourceMap": true,
"skipLibCheck": true
2017-06-25 15:15:30 -06:00
},
"typeAcquisition": {
"enable": false
}
}