mirror of
https://github.com/PretendoNetwork/website.git
synced 2025-04-02 11:11:50 -04:00
20 lines
411 B
JSON
20 lines
411 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"baseUrl": "src",
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": false,
|
|
"emitDecoratorMetadata": true,
|
|
"paths": {
|
|
"@*": ["./*"]
|
|
}
|
|
},
|
|
"lib": ["es6"],
|
|
"include": ["src/"]
|
|
}
|