piston/api/tsconfig.json

20 lines
456 B
JSON
Raw Normal View History

{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"resolveJsonModule": true,
"target": "ES2022",
2023-03-09 02:59:43 +01:00
"module": "ES2022",
2023-03-07 00:02:16 +01:00
"moduleResolution": "nodenext",
"allowSyntheticDefaultImports": true,
2023-03-09 02:59:43 +01:00
"outDir": "./dist",
"rootDir": "src",
// "declaration": true
},
2023-03-09 04:18:34 +01:00
"ts-node": {
"esm": true
},
2023-03-09 02:59:43 +01:00
"include": ["src"],
"exclude": ["dist", "node_modules"]
}